Enable built-in issue intent safe outputs on issue-triage - #1880
Conversation
Recompile issue-triage.lock.yml with gh-aw v0.82.1 to wire
GH_AW_RUNTIME_FEATURES=${{ vars.GH_AW_RUNTIME_FEATURES }}, enabling native
issue intents (rationale/confidence) for the workflow's add-labels safe
output. No behavior change: the trigger, permissions, prompt, and safe
outputs are unchanged, and the source .md is untouched.
The actions-lock.json pin bump (github/gh-aw-actions/setup v0.82.1) is
required by the recompiled lock.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
|
cc @friggeri for review. Requesting you as reviewer via the API failed (we lack write access on this repo, so reviewer assignment on a fork PR is blocked), so flagging you here directly. This is a minimal issue-intents onboarding change. See the |
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s agentic workflow lock material for the Issue Triage Agent, primarily by recompiling .github/workflows/issue-triage.lock.yml with a newer gh-aw version and updating the corresponding action pin entry in .github/aw/actions-lock.json.
Changes:
- Recompiled
issue-triage.lock.ymlusinggh-awv0.82.1 (new metadata, container images, and additional generated steps/outputs). - Updated
.github/aw/actions-lock.jsonto include thegithub/gh-aw-actions/setupv0.82.1 pin.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/issue-triage.lock.yml | Recompiled workflow lock with updated gh-aw runtime wiring and generated job/step structure. |
| .github/aw/actions-lock.json | Updates pinned github/gh-aw-actions/setup version used by agentic workflows. |
Review details
- Files reviewed: 2/2 changed files
- Comments generated: 5
- Review effort level: Low
| env: | ||
| GH_AW_MAX_DAILY_AI_CREDITS: ${{ vars.GH_AW_DEFAULT_MAX_DAILY_AI_CREDITS || '5000' }} | ||
| GH_AW_RUNTIME_FEATURES: ${{ vars.GH_AW_RUNTIME_FEATURES }} |
| env: | ||
| GH_AW_WORKFLOW_NAME: "Issue Triage Agent" | ||
| GH_AW_WORKFLOW_ID: "issue-triage" | ||
| GH_AW_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
| GH_AW_WORKFLOW_DISPATCH_AW_CONTEXT: ${{ github.event.inputs.aw_context || '' }} | ||
| GH_AW_HAS_SLASH_COMMAND: "false" | ||
| GH_AW_HAS_LABEL_COMMAND: "false" | ||
| GH_AW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| GH_AW_MAX_DAILY_AI_CREDITS: ${{ vars.GH_AW_DEFAULT_MAX_DAILY_AI_CREDITS || '5000' }} |
| GH_AW_TOOL_CACHE_MOUNT="" | ||
| GH_AW_TOOL_CACHE="${RUNNER_TOOL_CACHE:-/opt/hostedtoolcache}" | ||
| GH_AW_TOOL_CACHE="${RUNNER_TOOL_CACHE:?RUNNER_TOOL_CACHE must be set}" | ||
| if [ -d "$GH_AW_TOOL_CACHE" ]; then | ||
| if [[ "$GH_AW_TOOL_CACHE" != /opt/* ]]; then | ||
| GH_AW_TOOL_CACHE_MOUNT="$GH_AW_TOOL_CACHE:$GH_AW_TOOL_CACHE:ro" |
| -- /bin/bash -c 'set +o histexpand; export PATH="${RUNNER_TEMP}/gh-aw/mcp-cli/bin:$PATH" && GH_AW_TOOL_CACHE="${RUNNER_TOOL_CACHE:-/opt/hostedtoolcache}"; export PATH="$(find "$GH_AW_TOOL_CACHE" /opt/hostedtoolcache /home/runner/work/_tool -maxdepth 5 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || true)"; fi; if [ -z "$GH_AW_NODE_EXEC" ]; then echo "node runtime missing on this runner — check runtimes.node in workflow YAML" >&2; exit 127; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --allow-all-paths --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/agent-stdio.log | ||
| # shellcheck disable=SC1003,SC2016,SC2086 | ||
| awf --config "${RUNNER_TEMP}/gh-aw/awf-config.json" --container-workdir "${GITHUB_WORKSPACE}" --mount "${RUNNER_TEMP}/gh-aw:${RUNNER_TEMP}/gh-aw:ro" --mount "${RUNNER_TEMP}/gh-aw:/host${RUNNER_TEMP}/gh-aw:ro" ${GH_AW_TOOL_CACHE_MOUNT:+--mount "$GH_AW_TOOL_CACHE_MOUNT"} ${GH_AW_DOCKER_HOST:+--docker-host "$GH_AW_DOCKER_HOST"} ${GH_AW_DOCKER_HOST_PATH_PREFIX_ARGS} --env-all --exclude-env COPILOT_GITHUB_TOKEN --exclude-env GITHUB_MCP_SERVER_TOKEN --exclude-env MCP_GATEWAY_API_KEY --log-level info --proxy-logs-dir /tmp/gh-aw/sandbox/firewall/logs --audit-dir /tmp/gh-aw/sandbox/firewall/audit --skip-pull \ | ||
| -- /bin/bash -c 'set +o histexpand; export PATH="${RUNNER_TEMP}/gh-aw/mcp-cli/bin:$PATH" && : "${RUNNER_TOOL_CACHE:?RUNNER_TOOL_CACHE must be set}"; GH_AW_TOOL_CACHE="$RUNNER_TOOL_CACHE"; export PATH="$(find "$GH_AW_TOOL_CACHE" -maxdepth 5 -type d -name bin 2>/dev/null | tr '\''\n'\'' '\'':'\'')$PATH"; [ -n "$GOROOT" ] && export PATH="$GOROOT/bin:$PATH" || true && GH_AW_NODE_EXEC="${GH_AW_NODE_BIN:-}"; if [ -z "$GH_AW_NODE_EXEC" ] || [ ! -x "$GH_AW_NODE_EXEC" ]; then GH_AW_NODE_EXEC="$(command -v node 2>/dev/null || true)"; fi; if [ -z "$GH_AW_NODE_EXEC" ]; then echo "node runtime missing on this runner — check runtimes.node in workflow YAML" >&2; exit 127; fi; GH_AW_NPM_GLOBAL_ROOT="$(npm root -g 2>/dev/null || true)"; if [ -n "$GH_AW_NPM_GLOBAL_ROOT" ]; then export NODE_PATH="${GH_AW_NPM_GLOBAL_ROOT}${NODE_PATH:+:${NODE_PATH}}"; fi; "$GH_AW_NODE_EXEC" ${RUNNER_TEMP}/gh-aw/actions/copilot_harness.cjs /usr/local/bin/copilot --add-dir /tmp/gh-aw/ --log-level all --log-dir /tmp/gh-aw/sandbox/agent/logs/ --disable-builtin-mcps --no-ask-user --allow-all-tools --allow-all-paths --add-dir "${GITHUB_WORKSPACE}" --prompt-file /tmp/gh-aw/aw-prompts/prompt.txt' 2>&1 | tee -a /tmp/gh-aw/agent-stdio.log |
| "github/gh-aw-actions/setup@v0.82.1": { | ||
| "repo": "github/gh-aw-actions/setup", | ||
| "version": "v0.77.5", | ||
| "sha": "3ea13c02d765410340d533515cb31a7eef2baaf0" | ||
| "version": "v0.82.1", | ||
| "sha": "dadd6a0a0f4d1087fbd3e115776f28471388d6db" | ||
| }, |
The verify-compiled workflow pinned gh-aw v0.77.5 while issue-triage.lock.yml was compiled with v0.82.1, so CI recompiled at v0.77.5 and the byte diff failed the check. Bump the pin to v0.82.1 to match, and recompile all lock files at v0.82.1 so they are consistent with the pinned compiler. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
`gh aw compile` with the v0.82.10 toolchain introduced by this PR emits `.github/workflows/agentics-maintenance.yml`. Commit the generated file so it is tracked alongside the recompiled locks. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
Add `permissions.copilot-requests: write` to all 11 agentic (gh-aw) workflows so their Copilot usage is billed to the org, and recompile the lock files. The compiled workflows now authenticate the Copilot CLI with the GitHub Actions token and set S2STOKENS=true. Authored by adding `features.copilot-requests: true`, migrating it with `gh aw fix --write` (the deprecated flag maps to the permission), and recompiling with gh-aw v0.82.10. Rebased onto github#1880 (issue-intents), which bumps the pinned gh-aw CLI to v0.82.10. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
…kflow Complete the issue-intent audit against the v0.83.0 schema: every already-configured safe-output whose schema supports issue-intent now declares `issue-intent: true`. This adds it to `create-issue` in cross-repo-issue-analysis, the one remaining schema-supported tool. No tools added; no repo variables changed. Only the source frontmatter and its lock's frontmatter_hash change (the create-issue handler does not emit issue_intent at runtime, so the compiled safe-outputs config and body are unchanged). Full schema-supported enablement across the PR github#1880 scope: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage - create-issue: cross-repo-issue-analysis Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
Setup PR github#1880 ("Enable built-in issue intent safe outputs on issue-triage") meaningfully scoped issue intent to the issue-triage workflow. Revert the issue-intent frontmatter that had been added to the other five workflows (cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question) and recompile at gh-aw v0.83.0. Net effect vs main: - issue-triage.md: issue-intent enabled on add-labels + close-issue. - All other workflows: v0.82.10 -> v0.83.0 generated version bump only. - Shared generated files (actions-lock.json, agentics-maintenance.yml, copilot-setup-steps.yml, verify-compiled.yml): v0.83.0. Compiled with gh-aw v0.83.0; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
Reduce the PR to the minimal net diff: only the issue-triage workflow (the workflow meaningfully scoped by setup PR github#1880) is refreshed to gh-aw v0.83.0 and gains issue-intent. All other workflows are left untouched at their base v0.82.10 compiled state. Compiled issue-triage alone with `gh aw compile issue-triage` (v0.83.0), which regenerates only issue-triage.lock.yml and the shared actions-lock.json setup pin. The other 10 lock files, agentics- maintenance.yml, and copilot-setup-steps.yml are reverted to base. verify-compiled.yml (hand-authored CI) is pinned to v0.83.0 and scoped to `gh aw compile issue-triage` so the mixed-version repo verifies cleanly without rewriting the untouched locks. Net diff vs base: - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: v0.83.0 recompile - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.0 - verify-compiled.yml: CI pinned v0.83.0, compiles issue-triage only Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
…age (github#2063) * Refresh agentic workflows to stable gh-aw v0.82.14 Refresh the repo's GitHub Agentic Workflows from gh-aw v0.82.10 to the latest stable release v0.82.14 (no pre-releases). Recompiles the 11 existing AW workflows with the stable compiler and bumps the pinned setup-cli/setup action and version references. No source .md workflows were changed; all frontmatter/body hashes are byte-identical, so triggers, permissions, tools, safe outputs, network, prompts, and engine are unchanged. Only generated/runtime output differs (compiler stamp, bundled copilot engine 1.0.70->1.0.71, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Retarget refresh to pre-release gh-aw v0.83.0 Change the target from stable v0.82.14 to pre-release v0.83.0 per updated request. Recompiles the same 11 AW workflows with the v0.83.0 compiler and bumps the pinned setup-cli/setup action and version references. Behavior unchanged: no source .md edited; all 11 locks keep byte-identical frontmatter/body hashes. Only generated/runtime output differs (compiler stamp v0.83.0, bundled copilot engine 1.0.71->1.0.73, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Enable issue-intent on supported safe-outputs (gh-aw v0.83.0) Enable native issue intents (rationale/confidence) on every configured safe-output that supports issue-intent in gh-aw v0.83.0, across the 11 scoped workflows. Adds no new tools and changes no other behavior. Enabled on: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage create-issue is not included: the v0.83.0 compiler does not emit issue_intent for create-issue (its handler builder omits the field), so the key would be inert. Unsupported safe-outputs (add-comment, update-issue) are left untouched. Recompiled with gh-aw v0.83.0; non-affected lock files are byte-identical. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Add issue-intent to create-issue (schema-supported) in cross-repo workflow Complete the issue-intent audit against the v0.83.0 schema: every already-configured safe-output whose schema supports issue-intent now declares `issue-intent: true`. This adds it to `create-issue` in cross-repo-issue-analysis, the one remaining schema-supported tool. No tools added; no repo variables changed. Only the source frontmatter and its lock's frontmatter_hash change (the create-issue handler does not emit issue_intent at runtime, so the compiled safe-outputs config and body are unchanged). Full schema-supported enablement across the PR github#1880 scope: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage - create-issue: cross-repo-issue-analysis Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Narrow issue-intent scope to issue-triage (gh-aw v0.83.0) Setup PR github#1880 ("Enable built-in issue intent safe outputs on issue-triage") meaningfully scoped issue intent to the issue-triage workflow. Revert the issue-intent frontmatter that had been added to the other five workflows (cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question) and recompile at gh-aw v0.83.0. Net effect vs main: - issue-triage.md: issue-intent enabled on add-labels + close-issue. - All other workflows: v0.82.10 -> v0.83.0 generated version bump only. - Shared generated files (actions-lock.json, agentics-maintenance.yml, copilot-setup-steps.yml, verify-compiled.yml): v0.83.0. Compiled with gh-aw v0.83.0; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Restrict net change to issue-triage; revert unrelated version bumps Reduce the PR to the minimal net diff: only the issue-triage workflow (the workflow meaningfully scoped by setup PR github#1880) is refreshed to gh-aw v0.83.0 and gains issue-intent. All other workflows are left untouched at their base v0.82.10 compiled state. Compiled issue-triage alone with `gh aw compile issue-triage` (v0.83.0), which regenerates only issue-triage.lock.yml and the shared actions-lock.json setup pin. The other 10 lock files, agentics- maintenance.yml, and copilot-setup-steps.yml are reverted to base. verify-compiled.yml (hand-authored CI) is pinned to v0.83.0 and scoped to `gh aw compile issue-triage` so the mixed-version repo verifies cleanly without rewriting the untouched locks. Net diff vs base: - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: v0.83.0 recompile - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.0 - verify-compiled.yml: CI pinned v0.83.0, compiles issue-triage only Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Bump issue-triage refresh to gh-aw v0.83.1 (latest stable) Retarget the scoped refresh from v0.83.0 to the latest stable gh-aw release v0.83.1. Only the issue-triage workflow is refreshed; all other workflows remain untouched at their base v0.82.10 compiled state. Net diff vs base (4 files): - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: recompiled with gh-aw v0.83.1 - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.1 - verify-compiled.yml: CI pinned v0.83.1, compiles issue-triage only Compiled with `gh aw compile issue-triage` (v0.83.1); idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Full refresh to stable gh-aw v0.83.1; issue-intent on issue-triage Restore the standard full-repository refresh: all 11 workflows are recompiled with the latest stable gh-aw release v0.83.1 via the normal `gh aw compile`, and CI (verify-compiled.yml) is pinned to v0.83.1 with the full compile restored. Source changes are limited to a single workflow: issue-triage.md gains issue-intent on add-labels + close-issue. The other 10 workflow source .md files are byte-identical to base; their lock files change only by the v0.82.10 -> v0.83.1 generated version bump. Source vs generated: - Source (.md): issue-triage.md only (issue-intent) - Generated locks: all 11 *.lock.yml recompiled at v0.83.1 (issue_intent config present only in issue-triage.lock.yml) - Generated shared: .github/aw/actions-lock.json, agentics-maintenance.yml - CI config: verify-compiled.yml pinned v0.83.1, full `gh aw compile` Compiled with gh-aw v0.83.1; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * CI: install latest-stable gh-aw in verify-compiled (unpin) Restore the latest-stable install behavior in verify-compiled.yml instead of pinning the CLI version. The setup-cli action's `version: latest` resolves to the latest non-prerelease gh-aw release (v0.83.1 today), so CI reproduces the committed v0.83.1 locks via the standard full `gh aw compile` without hard-pinning committed config to a specific version. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Document dynamic latest-stable install in verify-compiled Clarify (comment-only) that verify-compiled installs the latest stable gh-aw release dynamically via `version: latest` (no version pin) and runs the full-repository `gh aw compile` so the diff check covers all 11 workflows. No behavior change; the action-code SHA remains base-pinned for supply-chain safety while the CLI version floats to latest stable. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Pin gh-aw compiler verification to v0.83.1 Keep lock-file verification reproducible by compiling with the same gh-aw version that generated the committed workflows.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Steve Sanderson <1101362+SteveSandersonMS@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
* Enable issue intents on issue-triage workflow
Recompile issue-triage.lock.yml with gh-aw v0.82.1 to wire
GH_AW_RUNTIME_FEATURES=${{ vars.GH_AW_RUNTIME_FEATURES }}, enabling native
issue intents (rationale/confidence) for the workflow's add-labels safe
output. No behavior change: the trigger, permissions, prompt, and safe
outputs are unchanged, and the source .md is untouched.
The actions-lock.json pin bump (github/gh-aw-actions/setup v0.82.1) is
required by the recompiled lock.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* Bump verify-compiled gh-aw pin to v0.82.1 and recompile locks
The verify-compiled workflow pinned gh-aw v0.77.5 while issue-triage.lock.yml
was compiled with v0.82.1, so CI recompiled at v0.77.5 and the byte diff failed
the check. Bump the pin to v0.82.1 to match, and recompile all lock files at
v0.82.1 so they are consistent with the pinned compiler.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* chore(aw): upgrade aw workflows with latest pre-release
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* fix(ci): align verify workflow gh-aw toolchain
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* Add generated agentics-maintenance workflow (gh-aw v0.82.10)
`gh aw compile` with the v0.82.10 toolchain introduced by this PR emits
`.github/workflows/agentics-maintenance.yml`. Commit the generated file
so it is tracked alongside the recompiled locks.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
* Enable org billing (copilot-requests) for agentic workflows
Add `permissions.copilot-requests: write` to all 11 agentic (gh-aw)
workflows so their Copilot usage is billed to the org, and recompile the
lock files. The compiled workflows now authenticate the Copilot CLI with
the GitHub Actions token and set S2STOKENS=true.
Authored by adding `features.copilot-requests: true`, migrating it with
`gh aw fix --write` (the deprecated flag maps to the permission), and
recompiling with gh-aw v0.82.10.
Rebased onto #1880 (issue-intents), which bumps the pinned gh-aw CLI to
v0.82.10.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
---------
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Steve Sanderson <SteveSandersonMS@users.noreply.github.com>
…age (#2063) * Refresh agentic workflows to stable gh-aw v0.82.14 Refresh the repo's GitHub Agentic Workflows from gh-aw v0.82.10 to the latest stable release v0.82.14 (no pre-releases). Recompiles the 11 existing AW workflows with the stable compiler and bumps the pinned setup-cli/setup action and version references. No source .md workflows were changed; all frontmatter/body hashes are byte-identical, so triggers, permissions, tools, safe outputs, network, prompts, and engine are unchanged. Only generated/runtime output differs (compiler stamp, bundled copilot engine 1.0.70->1.0.71, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Retarget refresh to pre-release gh-aw v0.83.0 Change the target from stable v0.82.14 to pre-release v0.83.0 per updated request. Recompiles the same 11 AW workflows with the v0.83.0 compiler and bumps the pinned setup-cli/setup action and version references. Behavior unchanged: no source .md edited; all 11 locks keep byte-identical frontmatter/body hashes. Only generated/runtime output differs (compiler stamp v0.83.0, bundled copilot engine 1.0.71->1.0.73, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Enable issue-intent on supported safe-outputs (gh-aw v0.83.0) Enable native issue intents (rationale/confidence) on every configured safe-output that supports issue-intent in gh-aw v0.83.0, across the 11 scoped workflows. Adds no new tools and changes no other behavior. Enabled on: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage create-issue is not included: the v0.83.0 compiler does not emit issue_intent for create-issue (its handler builder omits the field), so the key would be inert. Unsupported safe-outputs (add-comment, update-issue) are left untouched. Recompiled with gh-aw v0.83.0; non-affected lock files are byte-identical. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Add issue-intent to create-issue (schema-supported) in cross-repo workflow Complete the issue-intent audit against the v0.83.0 schema: every already-configured safe-output whose schema supports issue-intent now declares `issue-intent: true`. This adds it to `create-issue` in cross-repo-issue-analysis, the one remaining schema-supported tool. No tools added; no repo variables changed. Only the source frontmatter and its lock's frontmatter_hash change (the create-issue handler does not emit issue_intent at runtime, so the compiled safe-outputs config and body are unchanged). Full schema-supported enablement across the PR #1880 scope: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage - create-issue: cross-repo-issue-analysis Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Narrow issue-intent scope to issue-triage (gh-aw v0.83.0) Setup PR #1880 ("Enable built-in issue intent safe outputs on issue-triage") meaningfully scoped issue intent to the issue-triage workflow. Revert the issue-intent frontmatter that had been added to the other five workflows (cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question) and recompile at gh-aw v0.83.0. Net effect vs main: - issue-triage.md: issue-intent enabled on add-labels + close-issue. - All other workflows: v0.82.10 -> v0.83.0 generated version bump only. - Shared generated files (actions-lock.json, agentics-maintenance.yml, copilot-setup-steps.yml, verify-compiled.yml): v0.83.0. Compiled with gh-aw v0.83.0; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Restrict net change to issue-triage; revert unrelated version bumps Reduce the PR to the minimal net diff: only the issue-triage workflow (the workflow meaningfully scoped by setup PR #1880) is refreshed to gh-aw v0.83.0 and gains issue-intent. All other workflows are left untouched at their base v0.82.10 compiled state. Compiled issue-triage alone with `gh aw compile issue-triage` (v0.83.0), which regenerates only issue-triage.lock.yml and the shared actions-lock.json setup pin. The other 10 lock files, agentics- maintenance.yml, and copilot-setup-steps.yml are reverted to base. verify-compiled.yml (hand-authored CI) is pinned to v0.83.0 and scoped to `gh aw compile issue-triage` so the mixed-version repo verifies cleanly without rewriting the untouched locks. Net diff vs base: - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: v0.83.0 recompile - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.0 - verify-compiled.yml: CI pinned v0.83.0, compiles issue-triage only Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Bump issue-triage refresh to gh-aw v0.83.1 (latest stable) Retarget the scoped refresh from v0.83.0 to the latest stable gh-aw release v0.83.1. Only the issue-triage workflow is refreshed; all other workflows remain untouched at their base v0.82.10 compiled state. Net diff vs base (4 files): - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: recompiled with gh-aw v0.83.1 - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.1 - verify-compiled.yml: CI pinned v0.83.1, compiles issue-triage only Compiled with `gh aw compile issue-triage` (v0.83.1); idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Full refresh to stable gh-aw v0.83.1; issue-intent on issue-triage Restore the standard full-repository refresh: all 11 workflows are recompiled with the latest stable gh-aw release v0.83.1 via the normal `gh aw compile`, and CI (verify-compiled.yml) is pinned to v0.83.1 with the full compile restored. Source changes are limited to a single workflow: issue-triage.md gains issue-intent on add-labels + close-issue. The other 10 workflow source .md files are byte-identical to base; their lock files change only by the v0.82.10 -> v0.83.1 generated version bump. Source vs generated: - Source (.md): issue-triage.md only (issue-intent) - Generated locks: all 11 *.lock.yml recompiled at v0.83.1 (issue_intent config present only in issue-triage.lock.yml) - Generated shared: .github/aw/actions-lock.json, agentics-maintenance.yml - CI config: verify-compiled.yml pinned v0.83.1, full `gh aw compile` Compiled with gh-aw v0.83.1; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * CI: install latest-stable gh-aw in verify-compiled (unpin) Restore the latest-stable install behavior in verify-compiled.yml instead of pinning the CLI version. The setup-cli action's `version: latest` resolves to the latest non-prerelease gh-aw release (v0.83.1 today), so CI reproduces the committed v0.83.1 locks via the standard full `gh aw compile` without hard-pinning committed config to a specific version. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Document dynamic latest-stable install in verify-compiled Clarify (comment-only) that verify-compiled installs the latest stable gh-aw release dynamically via `version: latest` (no version pin) and runs the full-repository `gh aw compile` so the diff check covers all 11 workflows. No behavior change; the action-code SHA remains base-pinned for supply-chain safety while the CLI version floats to latest stable. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Pin gh-aw compiler verification to v0.83.1 Keep lock-file verification reproducible by compiling with the same gh-aw version that generated the committed workflows.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Steve Sanderson <1101362+SteveSandersonMS@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
* Enable issue intents on issue-triage workflow
Recompile issue-triage.lock.yml with gh-aw v0.82.1 to wire
GH_AW_RUNTIME_FEATURES=${{ vars.GH_AW_RUNTIME_FEATURES }}, enabling native
issue intents (rationale/confidence) for the workflow's add-labels safe
output. No behavior change: the trigger, permissions, prompt, and safe
outputs are unchanged, and the source .md is untouched.
The actions-lock.json pin bump (github/gh-aw-actions/setup v0.82.1) is
required by the recompiled lock.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* Bump verify-compiled gh-aw pin to v0.82.1 and recompile locks
The verify-compiled workflow pinned gh-aw v0.77.5 while issue-triage.lock.yml
was compiled with v0.82.1, so CI recompiled at v0.77.5 and the byte diff failed
the check. Bump the pin to v0.82.1 to match, and recompile all lock files at
v0.82.1 so they are consistent with the pinned compiler.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* chore(aw): upgrade aw workflows with latest pre-release
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* fix(ci): align verify workflow gh-aw toolchain
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
* Add generated agentics-maintenance workflow (gh-aw v0.82.10)
`gh aw compile` with the v0.82.10 toolchain introduced by this PR emits
`.github/workflows/agentics-maintenance.yml`. Commit the generated file
so it is tracked alongside the recompiled locks.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
* Enable org billing (copilot-requests) for agentic workflows
Add `permissions.copilot-requests: write` to all 11 agentic (gh-aw)
workflows so their Copilot usage is billed to the org, and recompile the
lock files. The compiled workflows now authenticate the Copilot CLI with
the GitHub Actions token and set S2STOKENS=true.
Authored by adding `features.copilot-requests: true`, migrating it with
`gh aw fix --write` (the deprecated flag maps to the permission), and
recompiling with gh-aw v0.82.10.
Rebased onto #1880 (issue-intents), which bumps the pinned gh-aw CLI to
v0.82.10.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 004ba78d-3cf4-41ab-8647-180e683460f0
---------
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Steve Sanderson <SteveSandersonMS@users.noreply.github.com>
…age (#2063) * Refresh agentic workflows to stable gh-aw v0.82.14 Refresh the repo's GitHub Agentic Workflows from gh-aw v0.82.10 to the latest stable release v0.82.14 (no pre-releases). Recompiles the 11 existing AW workflows with the stable compiler and bumps the pinned setup-cli/setup action and version references. No source .md workflows were changed; all frontmatter/body hashes are byte-identical, so triggers, permissions, tools, safe outputs, network, prompts, and engine are unchanged. Only generated/runtime output differs (compiler stamp, bundled copilot engine 1.0.70->1.0.71, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Retarget refresh to pre-release gh-aw v0.83.0 Change the target from stable v0.82.14 to pre-release v0.83.0 per updated request. Recompiles the same 11 AW workflows with the v0.83.0 compiler and bumps the pinned setup-cli/setup action and version references. Behavior unchanged: no source .md edited; all 11 locks keep byte-identical frontmatter/body hashes. Only generated/runtime output differs (compiler stamp v0.83.0, bundled copilot engine 1.0.71->1.0.73, action pins, image digests). Refs github/plan-track-agentic-toolkit#516 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Enable issue-intent on supported safe-outputs (gh-aw v0.83.0) Enable native issue intents (rationale/confidence) on every configured safe-output that supports issue-intent in gh-aw v0.83.0, across the 11 scoped workflows. Adds no new tools and changes no other behavior. Enabled on: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage create-issue is not included: the v0.83.0 compiler does not emit issue_intent for create-issue (its handler builder omits the field), so the key would be inert. Unsupported safe-outputs (add-comment, update-issue) are left untouched. Recompiled with gh-aw v0.83.0; non-affected lock files are byte-identical. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Add issue-intent to create-issue (schema-supported) in cross-repo workflow Complete the issue-intent audit against the v0.83.0 schema: every already-configured safe-output whose schema supports issue-intent now declares `issue-intent: true`. This adds it to `create-issue` in cross-repo-issue-analysis, the one remaining schema-supported tool. No tools added; no repo variables changed. Only the source frontmatter and its lock's frontmatter_hash change (the create-issue handler does not emit issue_intent at runtime, so the compiled safe-outputs config and body are unchanged). Full schema-supported enablement across the PR #1880 scope: - add-labels: cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question, issue-triage - close-issue: issue-triage - create-issue: cross-repo-issue-analysis Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Narrow issue-intent scope to issue-triage (gh-aw v0.83.0) Setup PR #1880 ("Enable built-in issue intent safe outputs on issue-triage") meaningfully scoped issue intent to the issue-triage workflow. Revert the issue-intent frontmatter that had been added to the other five workflows (cross-repo-issue-analysis, handle-bug, handle-documentation, handle-enhancement, handle-question) and recompile at gh-aw v0.83.0. Net effect vs main: - issue-triage.md: issue-intent enabled on add-labels + close-issue. - All other workflows: v0.82.10 -> v0.83.0 generated version bump only. - Shared generated files (actions-lock.json, agentics-maintenance.yml, copilot-setup-steps.yml, verify-compiled.yml): v0.83.0. Compiled with gh-aw v0.83.0; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Restrict net change to issue-triage; revert unrelated version bumps Reduce the PR to the minimal net diff: only the issue-triage workflow (the workflow meaningfully scoped by setup PR #1880) is refreshed to gh-aw v0.83.0 and gains issue-intent. All other workflows are left untouched at their base v0.82.10 compiled state. Compiled issue-triage alone with `gh aw compile issue-triage` (v0.83.0), which regenerates only issue-triage.lock.yml and the shared actions-lock.json setup pin. The other 10 lock files, agentics- maintenance.yml, and copilot-setup-steps.yml are reverted to base. verify-compiled.yml (hand-authored CI) is pinned to v0.83.0 and scoped to `gh aw compile issue-triage` so the mixed-version repo verifies cleanly without rewriting the untouched locks. Net diff vs base: - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: v0.83.0 recompile - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.0 - verify-compiled.yml: CI pinned v0.83.0, compiles issue-triage only Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Bump issue-triage refresh to gh-aw v0.83.1 (latest stable) Retarget the scoped refresh from v0.83.0 to the latest stable gh-aw release v0.83.1. Only the issue-triage workflow is refreshed; all other workflows remain untouched at their base v0.82.10 compiled state. Net diff vs base (4 files): - issue-triage.md: issue-intent on add-labels + close-issue - issue-triage.lock.yml: recompiled with gh-aw v0.83.1 - .github/aw/actions-lock.json: gh-aw setup pinned v0.83.1 - verify-compiled.yml: CI pinned v0.83.1, compiles issue-triage only Compiled with `gh aw compile issue-triage` (v0.83.1); idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Full refresh to stable gh-aw v0.83.1; issue-intent on issue-triage Restore the standard full-repository refresh: all 11 workflows are recompiled with the latest stable gh-aw release v0.83.1 via the normal `gh aw compile`, and CI (verify-compiled.yml) is pinned to v0.83.1 with the full compile restored. Source changes are limited to a single workflow: issue-triage.md gains issue-intent on add-labels + close-issue. The other 10 workflow source .md files are byte-identical to base; their lock files change only by the v0.82.10 -> v0.83.1 generated version bump. Source vs generated: - Source (.md): issue-triage.md only (issue-intent) - Generated locks: all 11 *.lock.yml recompiled at v0.83.1 (issue_intent config present only in issue-triage.lock.yml) - Generated shared: .github/aw/actions-lock.json, agentics-maintenance.yml - CI config: verify-compiled.yml pinned v0.83.1, full `gh aw compile` Compiled with gh-aw v0.83.1; idempotent. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * CI: install latest-stable gh-aw in verify-compiled (unpin) Restore the latest-stable install behavior in verify-compiled.yml instead of pinning the CLI version. The setup-cli action's `version: latest` resolves to the latest non-prerelease gh-aw release (v0.83.1 today), so CI reproduces the committed v0.83.1 locks via the standard full `gh aw compile` without hard-pinning committed config to a specific version. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Document dynamic latest-stable install in verify-compiled Clarify (comment-only) that verify-compiled installs the latest stable gh-aw release dynamically via `version: latest` (no version pin) and runs the full-repository `gh aw compile` so the diff check covers all 11 workflows. No behavior change; the action-code SHA remains base-pinned for supply-chain safety while the CLI version floats to latest stable. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7 * Pin gh-aw compiler verification to v0.83.1 Keep lock-file verification reproducible by compiling with the same gh-aw version that generated the committed workflows.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Co-authored-by: Steve Sanderson <1101362+SteveSandersonMS@users.noreply.github.com> Copilot-Session: b18ddbb6-b994-4a4b-9096-a16d52309df7
What & why
This enables issue intents on the
issue-triageworkflow. Issue intents let the triage agent attach its reasoning to each action it takes (labels, issue type, issue fields, with state and assignees support coming soon) and surface a confidence level, so maintainers can see why a change was made and approve or reject low-confidence suggestions instead of having them applied silently. A key goal is also to minimise the noise of agent-generated comments since rationale and confidence travel with the action itself rather than as separate comments on the issue. Learn more: Review and approve Copilot agent actions on issues.Changes
This change is minimal, with no behavior change. The workflow already uses the native
add-labelssafe output (the valid intents target), so onboarding is just a gh-aw upgrade + lock recompile.issue-triage.lock.ymlwith gh-aw v0.82.1 (wiresGH_AW_RUNTIME_FEATURES).github/gh-aw-actions/setuppin in.github/aw/actions-lock.jsonto v0.82.1.issue-triage.mdis untouched (native safe outputs, no custom rationale/confidence jobs to remove).This upgrade is inert until a repo admin sets the repository variable:
We opened this via a fork PR because we lack push/admin on this repo, so we cannot set the variable ourselves. Until it is set, the recompiled lock behaves exactly as before (no intents).
Closes github/plan-track-agentic-toolkit#516.